<
>
< evaluates to True if the first integer is less than the second.
True
1 < 2 //-> True 10 < 10 //-> False 100 < 99 //-> False
> evaluates to True if the first integer is greater than the second.
2 > 1 //-> True 10 > 10 //-> False 99 > 100 //-> False